#
# Type   
#      make
# to compile all the programs in this folder.
#
CC=gcc
CFLAGS=-g -std=c99 -pedantic -Wall -Wextra -Wpointer-arith

all: test_printf_1  test_printf_2  test_printf_3  test_printf_4  test_printf_5  test_printf_6

test_printf_1: test_printf_1.c
	$(CC) $(CFLAGS) -o test_printf_1  test_printf_1.c

test_printf_2: test_printf_2.c
	$(CC) $(CFLAGS) -o test_printf_2  test_printf_2.c

test_printf_3: test_printf_3.c
	$(CC) $(CFLAGS) -o test_printf_3  test_printf_3.c

test_printf_4: test_printf_4.c
	$(CC) $(CFLAGS) -o test_printf_4  test_printf_4.c

test_printf_5: test_printf_5.c
	$(CC) $(CFLAGS) -o test_printf_5  test_printf_5.c

test_printf_6: test_printf_6.c
	$(CC) $(CFLAGS) -o test_printf_6  test_printf_6.c

clean:
	rm -f  test_printf_1  test_printf_2  test_printf_3  test_printf_4  test_printf_5  test_printf_6
